2007-12-13 Kristian Rietveld <kris@imendio.com>
* gtk/gtktestutils.c (gtk_test_init): add a call to
g_test_bug_base().
* gtk/tests/treeview-scrolling.c: add g_test_bug() calls to
appriopriate tests.
svn path=/trunk/; revision=19171
+2007-12-13 Kristian Rietveld <kris@imendio.com>
+
+ * gtk/gtktestutils.c (gtk_test_init): add a call to
+ g_test_bug_base().
+
+ * gtk/tests/treeview-scrolling.c: add g_test_bug() calls to
+ appriopriate tests.
+
2007-12-13 Kristian Rietveld <kris@imendio.com>
* gtk/tests/liststore.c:
g_setenv ("GTK2_RC_FILES", "/dev/null", TRUE);
gtk_disable_setlocale();
setlocale (LC_ALL, "C");
+ g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
gtk_init (argcp, argvp);
}
* See #81627.
*/
+ g_test_bug ("81627");
+
gtk_widget_show_all (fixture->window);
while (gtk_events_pending ())
* See #316689.
*/
+ g_test_bug ("316689");
+
/* Scroll to some place close to the end */
path = gtk_tree_path_new_from_indices (N_ROWS - 4, -1);
scroll (fixture, path, FALSE, 0.0);
ScrollFixture *fixture;
/* See #359231. */
+ g_test_bug ("359231");
/* Create model (GtkTreeStore in this case) */
store = gtk_tree_store_new (1, G_TYPE_STRING);